Hard disk drive or Hard drive: The primary computer storage device, which spins, reads and writes one or more fixed disk platters
Heat sink: An environment or object that absorbs and dissipates heat into the air from another object. In computers, heat sinks are used to cool CPUs or graphics processors.
Motherboard: The central printed circuit board (PCB) found in complex electronic systems, such as modern personal computers. It holds many of the crucial electronic components of the system, including the CPU and RAM, and provides connectors for other peripherals. The motherboard is sometimes alternatively known as the mainboard, system board, or logic board.
Fragmentation: Refers to the condition of a disk or of RAM in which files are divided into pieces scattered around the disk or broken up in memory. Fragmentation occurs naturally when you use a disk to frequently create, delete, and modify files.
HTML BASICS
tags enclose elements of an html page/markup (ie. <body>)
elements have a nested structure. For example, <body> must be placed within the <html> tag.
Attributes:
extra information about an element
ie. image file URL, width/height, link URLs
EXAMPLE OF AN HTML PAGE:
<html> <head> <title>Basic HTML</title> </head> <body>
<p>Hello, world! This is a basic HTML page.</p>
<img src="hello.jpg" width="200" height="100" alt="Hello!">
</body>
</html>
Keywords:
HTML BASICS
- EXAMPLE OF AN HTML PAGE:
<html><head>
<title>Basic HTML</title>
</head>
<body>
<p>Hello, world! This is a basic HTML page.</p>
<img src="hello.jpg" width="200" height="100" alt="Hello!">
</body>
</html>
attributes and values:
<img src="hello.jpg" width="200" height="100" alt="Hello!">
src is an attribute, and "hello.jpg" is it's value. Anything that is equaled to something is an attribute and value.
HTML image